home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-02-05 | 1.1 KB | 45 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="Internet\Internet Explorer\Appearance"
- "NAME"="Splash Screen"
- "LANGUAGE"="VBScript"
- "VERSION"="1.1"
- "TEXT 1"="Display Splash Screen while loading"
- "DESCRIPTION 1"="Enables or disables the splash screen IE displays during startup."
- "DESCRIPTION 2"="NOTE: This option only works in Windows 95 or Windows NT."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "OSVERSION"="11000"
- "COMMENT 1"=" "
-
- sV1="HKLM\SOFTWARE\Policies\Microsoft\Internet Explorer\Infodelivery\Restrictions\NoSplash" 'DW
-
- SUB Plugin_Initialize
- i=RegReadValue(sV1)
- if i<>1 then SetUIElement 1,true
- END SUB
-
- SUB Plugin_Apply(ElementIndex,ElementSubIndex)
- Call Wrt(1,sV1)
-
- Call Restart()
- END SUB
-
- Sub Wrt(ITM,VAL)
- b=GetUIElement(ITM)
- if b=false then
- Call RegWriteValue(VAL,1,2)
- else
- s=RegReadValue(VAl)
- if IsEmpty(s)=false then
- Call RegDeleteValue(VAL)
- end if
- end if
- end sub
-
- SUB Plugin_Terminate
- END SUB
-
-